home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 151-175 / 174 / tunnel / myscreen.def < prev    next >
Text File  |  1995-03-13  |  746b  |  30 lines

  1. DEFINITION MODULE MyScreen;
  2. (*
  3. This module initializes the window and screen for
  4. use by any program.
  5.  
  6. Created: 5/24/86 by Richie Bielak
  7.  
  8. Modified: 08/Feb/88 by Garth Thornton
  9.           It's more versatile with IDCMPFlags global so i can use it
  10.           for more progs without recompiling.
  11.  
  12. Copyright (c) 1986 by Richard Bielak
  13.  
  14. This program maybe freely copied. But please
  15. leave my name in. Thanks.....Richie
  16.  
  17. *)
  18. FROM Intuition IMPORT WindowPtr, ScreenPtr, IDCMPFlagSet;
  19. FROM Views IMPORT ModeSet;
  20.  
  21.   PROCEDURE SetUpScreen (VAR wp : WindowPtr;
  22.                          VAR sp : ScreenPtr;
  23.                          width, height, depth : INTEGER;
  24.                          modes : ModeSet );
  25.  
  26.   VAR  MyIDCMPFlagSet : IDCMPFlagSet;
  27.  
  28. END MyScreen.
  29.  
  30.